ab5a3d9bea2d90977144d62a2237e00d2a1f0930,java/core/libjoynr/src/main/java/io/joynr/dispatching/JoynrMessageFactory.java,JoynrMessageFactory,createSubscriptionStop,#String#String#SubscriptionStop#MessagingQos#,177

Before Change


                                               String toParticipantId,
                                               SubscriptionStop subscriptionStop,
                                               MessagingQos messagingQos) {
        return createMessage(JoynrMessage.MESSAGE_TYPE_SUBSCRIPTION_STOP,
                             fromParticipantId,
                             toParticipantId,
                             subscriptionStop,
                             messagingQos);
    }

    public JoynrMessage createMulticast(String fromParticipantId,

After Change


                                               String toParticipantId,
                                               SubscriptionStop subscriptionStop,
                                               MessagingQos messagingQos) {
        JoynrMessage msg = createMessage(JoynrMessage.MESSAGE_TYPE_SUBSCRIPTION_STOP,
                                         fromParticipantId,
                                         toParticipantId,
                                         subscriptionStop,
                                         messagingQos);
        addRequestReplyIdCustomHeader(msg, subscriptionStop.getSubscriptionId());
        return msg;
    }

    public JoynrMessage createMulticast(String fromParticipantId,